provider SCIM GET /api/0/organizations/{organization_id_or_slug}/scim/v2/Users
@utdk/sentry /api/0/organizations/{organization_id_or_slug}/scim/v2/Users
List an Organization's SCIM Members
Returns a paginated list of members bound to a organization with a SCIM Users GET Request.
organization_id_or_slug path required
The ID or slug of the organization the resource belongs to.
string
startIndex query
SCIM 1-offset based index for pagination.
integer
count query
The maximum number of results the query should return, maximum of 100.
integer
filter query
A SCIM filter expression. The only operator currently supported is `eq`.
string
excludedAttributes query
Fields that should be left off of return values. Right now the only supported field for this query is members.
array

Try it

Authentication
Configure credentials for API Reference
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

listAnOrganizationSScimMembers
GET/api/0/organizations/{organization_id_or_slug}/scim/v2/Users
Returns a paginated list of members bound to a organization with a SCIM Users GET Request.

Parameters

required

The ID or slug of the organization the resource belongs to.

SCIM 1-offset based index for pagination.

The maximum number of results the query should return, maximum of 100.

A SCIM filter expression. The only operator currently supported is `eq`.

Fields that should be left off of return values. Right now the only supported field for this query is members.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import sentry from '@utdk/sentry';

await sentry.listAnOrganizationSScimMembers({
  "startIndex": 1,
  "count": 100
})